Security News
Fluent Assertions Faces Backlash After Abandoning Open Source Licensing
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
Get movie data easily from imdb
$ npm install --save node-movie
// get movie by title
var movie = require('node-movie');
movie('fury', function (data) {
console.log(data);
});
// get movie by imdbID
var movie = require('node-movie').getByID;
movie('tt2713180', function (data) {
console.log(data);
});
// Output:
// {
// "Title":"Fury",
// "Year":"2014",
// "Rated":"R",
// "Released":"17 Oct 2014",
// "Runtime":"134 min",
// "Genre":"Action, Drama, War",
// "Director":"David Ayer",
// "Writer":"David Ayer",
// "Actors":"Brad Pitt, Shia LaBeouf, Logan Lerman, Michael Peña",
// "Plot":"April, 1945. As the Allies make their final push in the European Theatre, a battle-hardened army sergeant named Wardaddy commands a Sherman tank and his five-man crew on a deadly mission behind enemy lines. Out-numbered, out-gunned, and with a rookie soldier thrust into their platoon, Wardaddy and his men face overwhelming odds in their heroic attempts to strike at the heart of Nazi Germany.",
// "Language":"English, German",
// "Country":"UK, China, USA",
// "Awards":"4 wins & 9 nominations.",
// "Poster":"http://ia.media-imdb.com/images/M/MV5BMjA4MDU0NTUyN15BMl5BanBnXkFtZTgwMzQxMzY4MjE@._V1_SX300.jpg",
// "Metascore":"64",
// "imdbRating":"7.9",
// "imdbVotes":"89,030",
// "imdbID":"tt2713180",
// "Type":"movie",
// "Response":"True"
// }
MIT © Mert Kahyaoğlu 2015
FAQs
Node imdb API
We found that node-movie demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
Research
Security News
Socket researchers uncover the risks of a malicious Python package targeting Discord developers.
Security News
The UK is proposing a bold ban on ransomware payments by public entities to disrupt cybercrime, protect critical services, and lead global cybersecurity efforts.